3.3.3 Canonify
Canonify treats formulae, definitions and equations in slightly different ways. If the active expression is a formula, canonify behaves as described above. If it is a definition, canonification is applied to the elaboration. If it is an equation, canonification is applied to each side independently.
Canonify also treats Boolean expressions differently from polynomials. Boolean expressions are canonified by applying a Boolean simplification algorithm.
3.3.3.1 Polynomial canonification
Canonify reorders product terms (operands of additive operators) so that any constant comes first, followed by variables in ascending order by name and descending order by exponent. Within each reordered term, constants are combined by multiplication and variables with the same name are combined by adding their exponents. Terms that differ only in the constant are combined by addition.
To see Canonify in action, Distribute

For practice, distribute, then canonify the following expressions.
(a+b)^3 (b+a)^3 (a-b)^4 ∑0, 3, a^(3-i)⋅b^iⅆi
3.3.3.2 Boolean canonification
A canonical form of Boolean expressions is produced by finding the essential prime implicants of the expression along with additional implicants to cover the expression. An expression is Boolean if it consists of the usual Boolean operators, the relational operators, real variables and real values.
For example, inclusive-or is given by
At this point, it is not possible to specify “don't cares” to the canonification algorithm.